home *** CD-ROM | disk | FTP | other *** search
/ Pluspack 1 / Caligari Corporation Pluspack1 1998.iso / TSX_SDK / tsxINC / tsxCamra.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-28  |  1.4 KB  |  38 lines

  1. //******************************************************************************
  2. //    File: tsxCamra.h
  3. //  Module: trueSpace eXtensions API
  4. //   Descr: Interface to tsxCAMERA
  5. //******************************************************************************
  6.  
  7. #ifndef TSXCAMRA_H
  8. #define TSXCAMRA_H
  9.  
  10.  
  11. #include "tsxTypes.h"
  12.  
  13.  
  14. //------------------------------------------------------------------------------
  15. //------------------------------------------------------------------------------
  16.  
  17. // A Camera is a GNode, with some special properties as mentioned below.
  18. // See also "tsxAView.h"
  19.  
  20. //------------------------------------------------------------------------------
  21. //    Managers
  22. //------------------------------------------------------------------------------
  23.  
  24. // Creates a camera at world origin, with the viewing plane on the world
  25. // YZ plane, Z in the up direction, and pointing in the positive world X
  26. // direction. On success, the new camera is the currently selected object.
  27. TSXAPIFN tsxERR tsxCameraCreateInScene();
  28.  
  29. // Use `tsxSobjDelete' to remove and delete from scene, and GNODE functions
  30. // to manage in the scene graph and access/modify position.
  31.  
  32. // Scaling along Camera's Z axis changes ZOOM.
  33. // Use GNODE rotation and translation functions to point the camera at an object.
  34.  
  35.  
  36. //******************************************************************************
  37. #endif // TSXCAMRA_H
  38.